home *** CD-ROM | disk | FTP | other *** search
/ Pascal Super Library / Pascal Super Library (CW International)(1997).bin / LIBRARY / PBLIB1 / PROGS / CLRSCR.PAS < prev    next >
Pascal/Delphi Source File  |  1994-05-03  |  113b  |  8 lines

  1. Program DelayProg;
  2. uses CRT;
  3.      begin
  4.      TextColor(7);
  5.      TextBackground(0);
  6.      clrscr;
  7.      end.
  8.